.mh-menu{
	height: auto;
	width: 90%;
	margin: 70px auto;
	position: relative;
}
.mh-menu li{
	width: 300px;
	margin: 0;
	padding: 0;
}
.mh-menu li a{
	display: block;
	width: 280px;
	padding: 0px 10px;
	text-align: right;
	position: relative;
	z-index: 10;
	height: 97px;
	color: black;
}
.mh-menu li:nth-child(1):hover a{
	background-color: rgba(234,30,22,0.9);
}
.mh-menu li:nth-child(2):hover a{
	background-color: rgba(0, 127, 98, 0.9)
}
.mh-menu li:nth-child(3):hover a{
	background-color: rgba(232, 209, 91, 0.9);
}
.mh-menu li:nth-child(4):hover a{
	background-color: rgba(209, 166, 106, 0.9);
}
.mh-menu li:nth-child(5):hover a{
	background-color: rgba(210, 61, 97, 0.9);
}
.mh-menu li a span{
	display:block;
}
.mh-menu li a span:first-child{
	font-weight: 700;
	font-size: 16px;
	color: #ddd;
	padding-top: 10px;
	font-family: 'Raleway', 'Sans-serif';
}
.mh-menu li a span:nth-child(2){
	font-weight: 400;
	font-style: italic;
	font-size: 28px;
	font-family: 'Oswald', sans-serif;
	-webkit-transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	-ms-transition: color 0.2s linear;
	transition: color 0.2s linear;
}
.mh-menu li:hover span:nth-child(2){
	color: #fff;
}
.mh-menu li img{
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	opacity: 0;
	-webkit-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-moz-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-o-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-ms-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
}


.mh-menu li:hover img{
	left: 350px;
	opacity: .8;
}


ul {
	list-style: none;
}



/*RESPONSIVO*/


@media only screen and (max-width:768px) {

	.mh-menu {
    width: 80%;
    padding: 0;
    margin-left: 0;
  }

  .mh-menu li {
    width: 200px;
  }

  .mh-menu li a {
    width: 180px;
    height: 86px;
  }

  .mh-menu li a span:nth-child(2) {
    font-size: 20px;
  }

  .mh-menu li:hover img {
  	left: 200px;
  }

  .mh-menu li img {
  	width: 170px;
  }
}